home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / xcoral / xcoral.lha / xcoral-1.72 / lex.yy.c < prev    next >
C/C++ Source or Header  |  1993-01-28  |  70KB  |  2,076 lines

  1. /* A lexical scanner generated by flex */
  2.  
  3. /* scanner skeleton version:
  4.  * $Header: /usr/fsys/odin/a/vern/flex/RCS/flex.skel,v 2.16 90/08/03 14:09:36 vern Exp $
  5.  */
  6.  
  7. #define FLEX_SCANNER
  8.  
  9. #include <stdio.h>
  10.  
  11.  
  12. /* cfront 1.2 defines "c_plusplus" instead of "__cplusplus" */
  13. #ifdef c_plusplus
  14. #ifndef __cplusplus
  15. #define __cplusplus
  16. #endif
  17. #endif
  18.  
  19.  
  20. #ifdef __cplusplus
  21.  
  22. #include <stdlib.h>
  23. #include <osfcn.h>
  24.  
  25. /* use prototypes in function declarations */
  26. #define YY_USE_PROTOS
  27.  
  28. /* the "const" storage-class-modifier is valid */
  29. #define YY_USE_CONST
  30.  
  31. #else    /* ! __cplusplus */
  32.  
  33. #ifdef __STDC__
  34.  
  35. #ifdef __GNUC__
  36. #include <stddef.h>
  37. void *malloc( size_t );
  38. void free( void* );
  39. #else
  40. #include <stdlib.h>
  41. #endif    /* __GNUC__ */
  42.  
  43. #define YY_USE_PROTOS
  44. #define YY_USE_CONST
  45.  
  46. #endif    /* __STDC__ */
  47. #endif    /* ! __cplusplus */
  48.  
  49.  
  50. #ifdef __TURBOC__
  51. #define YY_USE_CONST
  52. #endif
  53.  
  54.  
  55. #ifndef YY_USE_CONST
  56. #define const
  57. #endif
  58.  
  59.  
  60. #ifdef YY_USE_PROTOS
  61. #define YY_PROTO(proto) proto
  62. #else
  63. #define YY_PROTO(proto) ()
  64. /* we can't get here if it's an ANSI C compiler, or a C++ compiler,
  65.  * so it's got to be a K&R compiler, and therefore there's no standard
  66.  * place from which to include these definitions
  67.  */
  68. char *malloc();
  69. int free();
  70. int read();
  71. #endif
  72.  
  73.  
  74. /* amount of stuff to slurp up with each read */
  75. #ifndef YY_READ_BUF_SIZE
  76. #define YY_READ_BUF_SIZE 8192
  77. #endif
  78.  
  79. /* returned upon end-of-file */
  80. #define YY_END_TOK 0
  81.  
  82. /* copy whatever the last rule matched to the standard output */
  83.  
  84. /* cast to (char *) is because for 8-bit chars, yytext is (unsigned char *) */
  85. /* this used to be an fputs(), but since the string might contain NUL's,
  86.  * we now use fwrite()
  87.  */
  88. #define ECHO (void) fwrite( (char *) yytext, yyleng, 1, yyout )
  89.  
  90. /* gets input and stuffs it into "buf".  number of characters read, or YY_NULL,
  91.  * is returned in "result".
  92.  */
  93. #define YY_INPUT(buf,result,max_size) \
  94.     if ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \
  95.         YY_FATAL_ERROR( "read() in flex scanner failed" );
  96. #define YY_NULL 0
  97.  
  98. /* no semi-colon after return; correct usage is to write "yyterminate();" -
  99.  * we don't want an extra ';' after the "return" because that will cause
  100.  * some compilers to complain about unreachable statements.
  101.  */
  102. #define yyterminate() return ( YY_NULL )
  103.  
  104. /* report a fatal error */
  105.  
  106. /* The funky do-while is used to turn this macro definition into
  107.  * a single C statement (which needs a semi-colon terminator).
  108.  * This avoids problems with code like:
  109.  *
  110.  *     if ( something_happens )
  111.  *        YY_FATAL_ERROR( "oops, the something happened" );
  112.  *    else
  113.  *        everything_okay();
  114.  *
  115.  * Prior to using the do-while the compiler would get upset at the
  116.  * "else" because it interpreted the "if" statement as being all
  117.  * done when it reached the ';' after the YY_FATAL_ERROR() call.
  118.  */
  119.  
  120. #define YY_FATAL_ERROR(msg) \
  121.     do \
  122.         { \
  123.         (void) fputs( msg, stderr ); \
  124.         (void) putc( '\n', stderr ); \
  125.         exit( 1 ); \
  126.         } \
  127.     while ( 0 )
  128.  
  129. /* default yywrap function - always treat EOF as an EOF */
  130. #define yywrap() 1
  131.  
  132. /* enter a start condition.  This macro really ought to take a parameter,
  133.  * but we do it the disgusting crufty way forced on us by the ()-less
  134.  * definition of BEGIN
  135.  */
  136. #define BEGIN yy_start = 1 + 2 *
  137.  
  138. /* action number for EOF rule of a given start state */
  139. #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1)
  140.  
  141. /* special action meaning "start processing a new file" */
  142. #define YY_NEW_FILE \
  143.     do \
  144.         { \
  145.         yy_init_buffer( yy_current_buffer, yyin ); \
  146.         yy_load_buffer_state(); \
  147.         } \
  148.     while ( 0 )
  149.  
  150. /* default declaration of generated scanner - a define so the user can
  151.  * easily add parameters
  152.  */
  153. #define YY_DECL int yylex YY_PROTO(( void )) 
  154.  
  155. /* code executed at the end of each rule */
  156. #define YY_BREAK break;
  157.  
  158. #define YY_END_OF_BUFFER_CHAR 0
  159.  
  160. #ifndef YY_BUF_SIZE
  161. #define YY_BUF_SIZE (YY_READ_BUF_SIZE * 2) /* size of default input buffer */
  162. #endif
  163.  
  164. typedef struct yy_buffer_state *YY_BUFFER_STATE;
  165.  
  166. #define YY_CHAR char
  167. # line 1 "gen.l"
  168. #define INITIAL 0
  169. # line 2 "gen.l"
  170.  
  171. #include "global_parse.h"
  172. #include "gen.tab.h"
  173.  
  174. extern YYSTYPE yylval;
  175.  
  176. #include "browser_util.h"
  177. #include <string.h>
  178. #include <ctype.h>
  179.  
  180.  
  181. /*------------------------------------------------------------------------------
  182. */
  183. int line_count;
  184.  
  185. static int bracket_level;
  186.  
  187. static int parent_level;
  188.  
  189. static int tmp_line_count;
  190.  
  191. static int virtual_flag;
  192.  
  193. static int const_flag;
  194.  
  195.  
  196. /*------------------------------------------------------------------------------
  197. */
  198.  
  199. #define ARG_BUFF_SIZE  4096
  200.  
  201. static char arg_buff[ARG_BUFF_SIZE];
  202.  
  203. static int  arg_index = 0;
  204.  
  205.  
  206. /*------------------------------------------------------------------------------
  207. */
  208.  
  209. static int  state_stack[20];
  210.  
  211. static int  next_free;
  212.  
  213. static int  current_state;
  214.  
  215.  
  216. /*------------------------------------------------------------------------------
  217. */
  218.  
  219. #define LINE_COUNT()         {                                 \
  220.                                char* current;                  \
  221.                                                                \
  222.                                current = yytext + yyleng;      \
  223.                                while ((--current) >= yytext) { \
  224.                                  if ((*current) == '\n')       \
  225.                                    line_count++;               \
  226.                                }                               \
  227.                              }
  228.  
  229.  
  230. /*------------------------------------------------------------------------------
  231. */
  232.  
  233. #define BEGIN_STATE(state)   BEGIN(current_state = state)
  234.  
  235. #define STACK_STATE(state)   { state_stack[next_free++] = current_state; \
  236.                                BEGIN_STATE(state); }
  237.  
  238. #define UNSTACK_STATE()      { BEGIN_STATE(state_stack[--next_free]); }
  239.  
  240.  
  241. #define YY_USER_INIT         BEGIN_STATE(MAIN_STATE)
  242.  
  243. #define MAIN_STATE 1
  244. #define OPERATOR_STATE 2
  245. #define PROC_STATE1 3
  246. #define PROC_STATE2 4
  247. #define CLASS_STATE1 5
  248. #define CLASS_STATE2 6
  249. #define PARENT_STATE 7
  250. #define BODY_STATE 8
  251. #define ARG_STATE 9
  252. #define INIT_STATE 10
  253. #define TAIL_STATE 11
  254. #define CODE_STATE 12
  255. # line 119 "gen.l"
  256.  
  257. /* done after the current pattern has been matched and before the
  258.  * corresponding action - sets up yytext
  259.  */
  260. #define YY_DO_BEFORE_ACTION \
  261.     yytext = yy_bp; \
  262.     yyleng = yy_cp - yy_bp; \
  263.     yy_hold_char = *yy_cp; \
  264.     *yy_cp = '\0'; \
  265.     yy_c_buf_p = yy_cp;
  266.  
  267. #define EOB_ACT_CONTINUE_SCAN 0
  268. #define EOB_ACT_END_OF_FILE 1
  269. #define EOB_ACT_LAST_MATCH 2
  270.  
  271. /* return all but the first 'n' matched characters back to the input stream */
  272. #define yyless(n) \
  273.     do \
  274.         { \
  275.         /* undo effects of setting up yytext */ \
  276.         *yy_cp = yy_hold_char; \
  277.         yy_c_buf_p = yy_cp = yy_bp + n; \
  278.         YY_DO_BEFORE_ACTION; /* set up yytext again */ \
  279.         } \
  280.     while ( 0 )
  281.  
  282. #define unput(c) yyunput( c, yytext )
  283.  
  284.  
  285. struct yy_buffer_state
  286.     {
  287.     FILE *yy_input_file;
  288.  
  289.     YY_CHAR *yy_ch_buf;        /* input buffer */
  290.     YY_CHAR *yy_buf_pos;    /* current position in input buffer */
  291.  
  292.     /* size of input buffer in bytes, not including room for EOB characters*/
  293.     int yy_buf_size;    
  294.  
  295.     /* number of characters read into yy_ch_buf, not including EOB characters */
  296.     int yy_n_chars;
  297.  
  298.     int yy_eof_status;        /* whether we've seen an EOF on this buffer */
  299. #define EOF_NOT_SEEN 0
  300.     /* "pending" happens when the EOF has been seen but there's still
  301.      * some text process
  302.      */
  303. #define EOF_PENDING 1
  304. #define EOF_DONE 2
  305.     };
  306.  
  307. static YY_BUFFER_STATE yy_current_buffer;
  308.  
  309. /* we provide macros for accessing buffer states in case in the
  310.  * future we want to put the buffer states in a more general
  311.  * "scanner state"
  312.  */
  313. #define YY_CURRENT_BUFFER yy_current_buffer
  314.  
  315.  
  316. /* yy_hold_char holds the character lost when yytext is formed */
  317. static YY_CHAR yy_hold_char;
  318.  
  319. static int yy_n_chars;        /* number of characters read into yy_ch_buf */
  320.  
  321.  
  322.  
  323. #ifndef YY_USER_ACTION
  324. #define YY_USER_ACTION
  325. #endif
  326.  
  327. #ifndef YY_USER_INIT
  328. #define YY_USER_INIT
  329. #endif
  330.  
  331. extern YY_CHAR *yytext;
  332. extern int yyleng;
  333. extern FILE *yyin, *yyout;
  334.  
  335. YY_CHAR *yytext;
  336. int yyleng;
  337.  
  338. FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;
  339.  
  340. #define YY_END_OF_BUFFER 75
  341. typedef int yy_state_type;
  342. static const short int yy_acclist[600] =
  343.     {   0,
  344.     16442,16442,   75,   73,   74,    5,   73,   74,    4,   74,
  345.        73,   74,   68,   73,   74,   67,   73,   74,   73,   74,
  346.        72,   73,   74,   72,   73,   74,   72,   73,   74,   73,
  347.        74,    6,   73,   74,    6,   73,   74,    6,   73,   74,
  348.        73,   74,    6,   73,   74,    6,   73,   74,    6,   73,
  349.        74,    6,   73,   74,    6,   73,   74,    6,   73,   74,
  350.         6,   73,   74,    6,   73,   74,    6,   73,   74,   73,
  351.        74,    6,   73,   74,    6,   73,   74,    6,   73,   74,
  352.         6,   73,   74,    6,   73,   74,    8,   73,   74,    5,
  353.         8,   73,   74,    7,    8,   73,   74,    8,   73,   74,
  354.  
  355.         8,   68,   73,   74,    8,   67,   73,   74,    8,   73,
  356.        74,   15,   73,   74,    5,   15,   73,   74,   15,   73,
  357.        74,    9,   15,   73,   74,   13,   15,   68,   73,   74,
  358.        14,   15,   73,   74,   12,   15,   73,   74,   12,   15,
  359.        73,   74,   10,   15,   67,   73,   74,   15,   73,   74,
  360.        17,   73,   74,    5,   17,   73,   74,   17,   73,   74,
  361.        17,   68,   73,   74,   16,   17,   73,   74,   17,   67,
  362.        73,   74,   17,   73,   74,   20,   73,   74,    5,   20,
  363.        73,   74,   20,   73,   74,   18,   20,   73,   74,   20,
  364.        68,   73,   74,   19,   20,   67,   73,   74,   20,   73,
  365.  
  366.        74,   25,   73,   74,   25,   73,   74,   25,   73,   74,
  367.        26,   67,   73,   74,   72,   73,   74,   72,   73,   74,
  368.        72,   73,   74,   72,   73,   74,   72,   73,   74,   29,
  369.        73,   74,   41,   73,   74,   50,   73,   74,   51,   73,
  370.        74,   40,   73,   74,   43,   73,   74,   73,   74,   49,
  371.        73,   74,   48,   73,   74,   73,   74,   48,   73,   74,
  372.        48,   73,   74,   48,   73,   74,   48,   73,   74,   48,
  373.        73,   74,   48,   73,   74,   48,   73,   74,   48,   73,
  374.        74,   57,   73,   74,    5,   57,   73,   74,   57,   73,
  375.        74,   57,   73,   74,   54,   57,   73,   74,   56,   57,
  376.  
  377.        73,   74,   55,   57,   73,   74,   57,   73,   74,   57,
  378.        68,   73,   74,   57,   73,   74,   57,   67,   73,   74,
  379.        57,   73,   74,   73,   74,16442,    5,   73,   74,16442,
  380.         4,   74,16442,   73,   74,16442, 8250,   68,   73,   74,
  381.      8250,   67,   73,   74,   73,   74,16442,   66,   73,   74,
  382.         5,   66,   73,   74,   73,   74,   63,   73,   74,   64,
  383.        73,   74,   66,   68,   73,   74,   66,   73,   74,   59,
  384.        67,   73,   74,   60,   73,   74,   66,   73,   74,    5,
  385.         1,    2,    3,   72,   72,   72,   72,    6,    6,    6,
  386.         6,    6,    6,    6,    6,    6,   12,   12,   16,   25,
  387.  
  388.        25,   25,   25,   72,   72,   72,   72,   72,   72,   48,
  389.        42,   48,   48,   48,   48,   48,   48,   48,   48,   48,
  390.        48,   48,   48,   52,16442, 8250,    5,16442,    1,16442,
  391.         2,16442,16442,    3,16442,   66,    5,   66,   65,   66,
  392.         3,   66,    2,    3,   70,   72,   72,    6,    6,   12,
  393.        25,   25,   25,   25,   72,   72,   72,   72,   72,   72,
  394.        47,   48,   48,   48,   48,   34,   48,   48,   48,   48,
  395.        48,   48,   48,   48,   48,   53,    2,16442,    2, 8250,
  396.         3,16442,   61,   62,    3,   66,   72,   72,    6,   12,
  397.        25,   25,   25,   25,   72,   72,   72,   72,   72,   72,
  398.  
  399.        45,   48,   32,   48,   48,   48,   35,   48,   48,   48,
  400.        48,   48,   48,   48,   48,   69,   72,   72,    6,   11,
  401.        12,   25,   25,   25,   25,   72,   72,   72,   72,   72,
  402.        72,   38,   48,   39,   48,   48,   33,   48,   48,   48,
  403.        37,   48,   48,   48,   72,   25,   25,   21,   25,   25,
  404.        28,   72,   72,   72,   72,   21,   72,   72,   48,   31,
  405.        48,   36,   48,   48,   48,   72,   23,   25,   25,   24,
  406.        25,   28,   28,   72,   72,   23,   72,   72,   27,   72,
  407.        48,   48,   48,   71,   72,   25,   71,   72,   72,   44,
  408.        48,   30,   48,   46,   48,   22,   25,   22,   72
  409.  
  410.     } ;
  411.  
  412. static const short int yy_accept[343] =
  413.     {   0,
  414.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  415.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  416.         1,    1,    1,    2,    3,    3,    3,    4,    6,    9,
  417.        11,   13,   16,   19,   21,   24,   27,   30,   32,   35,
  418.        38,   41,   43,   46,   49,   52,   55,   58,   61,   64,
  419.        67,   70,   72,   75,   78,   81,   84,   87,   90,   94,
  420.        98,  101,  105,  109,  112,  115,  119,  122,  126,  131,
  421.       135,  139,  143,  148,  151,  154,  158,  161,  165,  169,
  422.       173,  176,  179,  183,  186,  190,  194,  199,  202,  205,
  423.       208,  211,  215,  218,  221,  224,  227,  230,  233,  236,
  424.  
  425.       239,  242,  245,  248,  250,  253,  256,  258,  261,  264,
  426.       267,  270,  273,  276,  279,  282,  285,  289,  292,  295,
  427.       299,  303,  307,  310,  314,  317,  321,  324,  327,  331,
  428.       334,  337,  341,  345,  348,  351,  355,  357,  360,  363,
  429.       367,  370,  374,  377,  380,  381,  382,  383,  383,  384,
  430.       384,  385,  385,  386,  387,  387,  388,  389,  390,  391,
  431.       392,  393,  394,  395,  396,  397,  398,  399,  400,  401,
  432.       402,  403,  404,  405,  406,  407,  408,  409,  410,  410,
  433.       411,  411,  412,  413,  414,  415,  416,  417,  418,  419,
  434.       420,  421,  422,  423,  424,  424,  425,  425,  425,  426,
  435.  
  436.       427,  429,  431,  433,  434,  436,  437,  439,  439,  440,
  437.       440,  440,  440,  441,  443,  444,  445,  446,  447,  448,
  438.       449,  450,  451,  452,  453,  454,  455,  456,  457,  458,
  439.       459,  460,  461,  462,  463,  464,  465,  466,  468,  469,
  440.       470,  471,  472,  473,  474,  475,  476,  477,  479,  481,
  441.       483,  484,  485,  487,  488,  489,  490,  491,  492,  493,
  442.       494,  495,  496,  497,  498,  499,  500,  501,  503,  505,
  443.       506,  507,  509,  510,  511,  512,  513,  514,  515,  516,
  444.       518,  519,  520,  522,  523,  524,  525,  526,  527,  528,
  445.       529,  530,  531,  532,  534,  536,  537,  539,  540,  541,
  446.  
  447.       543,  544,  545,  546,  547,  548,  550,  551,  553,  554,
  448.       555,  556,  558,  559,  560,  562,  564,  565,  566,  567,
  449.       569,  570,  572,  573,  575,  576,  578,  579,  581,  582,
  450.       583,  584,  586,  587,  589,  590,  592,  594,  596,  598,
  451.       600,  600
  452.     } ;
  453.  
  454. static const YY_CHAR yy_ec[128] =
  455.     {   0,
  456.         1,    1,    1,    1,    1,    1,    1,    1,    2,    3,
  457.         2,    4,    4,    1,    1,    1,    1,    1,    1,    1,
  458.         1,    1,    1,    1,    1,    1,    1,    1,    1,    1,
  459.         1,    2,    5,    6,    7,    1,    8,    9,   10,   11,
  460.        12,   13,   14,   15,   16,   17,   18,   19,   19,   19,
  461.        19,   19,   19,   19,   19,   19,   19,   20,   21,   22,
  462.        23,   24,    1,    1,   25,   25,   25,   25,   25,   25,
  463.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  464.        25,   25,   25,   25,   25,   25,   25,   25,   25,   25,
  465.        26,   27,   28,   29,   25,    1,   30,   31,   32,   33,
  466.  
  467.        34,   35,   36,   37,   38,   25,   25,   39,   25,   40,
  468.        41,   42,   25,   43,   44,   45,   46,   47,   48,   25,
  469.        25,   25,   49,   50,   51,   52,    1
  470.     } ;
  471.  
  472. static const YY_CHAR yy_meta[53] =
  473.     {   0,
  474.         1,    2,    3,    2,    1,    4,    1,    1,    1,    4,
  475.         1,    1,    1,    1,    1,    1,    1,    4,    5,    6,
  476.         1,    1,    1,    1,    7,    1,    1,    1,    1,    7,
  477.         7,    7,    7,    7,    7,    7,    7,    7,    7,    7,
  478.         7,    7,    7,    7,    7,    7,    7,    7,    4,    1,
  479.         4,    1
  480.     } ;
  481.  
  482. static const short int yy_base[365] =
  483.     {   0,
  484.         0,    2,   50,  721,  102,  720,    8,   25,  154,  719,
  485.       206,  718,   13,   52,  257,  697,  282,  696,  333,  695,
  486.       384,  432,  259,  405,  480,  530,  701,  966,  697,  966,
  487.         4,  966,  966,    4,   10,   38,    5,   35,  675,  674,
  488.        41,  684,  672,   42,  966,  247,  251,    2,  670,   37,
  489.         0,  664,  668,  656,  655,  260,  966,  966,  686,  966,
  490.       254,  966,  966,   65,  966,  685,  255,  966,  966,  966,
  491.         0,  645,  966,   74,  966,  683,  263,  966,    0,  966,
  492.       282,  966,  682,  375,  966,  966,  966,  307,    0,    2,
  493.       645,  966,    0,  639,  639,   20,  642,  966,  966,  966,
  494.  
  495.       966,  966,  966,  661,  966,    0,  629,  610,  376,  615,
  496.       613,  618,  382,  611,  609,  966,  647,   73,  633,  966,
  497.       966,  966,  379,  966,  641,  966,  387,  379,  408,  382,
  498.       388,  966,  966,  580,    0,  644,  398,  365,  423,    0,
  499.       639,  966,  966,  628,  642,  966,    0,  420,    0,  458,
  500.       604,  622,  391,  406,  461,    0,  966,  966,  966,  628,
  501.       617,  616,    0,  599,  589,    0,  596,    0,    0,  408,
  502.       604,  591,    0,  595,  597,  410,  578,  565,  590,    0,
  503.       578,  966,  559,  573,  572,  560,  554,  558,  561,  555,
  504.       559,  551,  241,  554,  446,  966,    0,  582,  435,  966,
  505.  
  506.       453,  445,  455,    0,  675,    0,  589,  461,  966,    0,
  507.       580,  579,    0,  705,    0,    0,  966,  431,  429,  554,
  508.         0,  543,  539,  540,  544,  535,  544,  534,  529,  530,
  509.       535,  528,  966,  531,  528,  526,  525,    0,  532,  529,
  510.       523,  525,  518,  522,  524,  531,  966,  466,    0,    0,
  511.       966,  966,    0,  441,  461,  515,  514,  528,  522,  517,
  512.       508,  513,  522,  520,  515,  509,  500,    0,    0,  501,
  513.       499,    0,  499,  497,  507,  507,  498,  499,  489,  491,
  514.       432,  494,    0,  482,  494,  493,  494,  490,  477,  476,
  515.       488,  487,  488,    0,    0,  472,    0,  483,  469,    0,
  516.  
  517.       473,  474,  454,  477,  465,    0,  470,  753,  467,  472,
  518.       460,    0,  464,  465,    0,    0,  463,  450,  453,    0,
  519.       445,    0,  787,    0,  389,    0,  384,    0,  355,  299,
  520.       297,  227,  232,    0,    2,    0,    0,    0,    0,    0,
  521.       966,  835,  842,  849,  856,  863,  870,  876,  882,  888,
  522.       891,  894,  897,  900,  903,  906,  913,  920,  927,  934,
  523.       941,  948,  951,  958
  524.     } ;
  525.  
  526. static const short int yy_def[365] =
  527.     {   0,
  528.       342,  342,  342,    3,  341,    5,  343,  343,  341,    9,
  529.       341,   11,  344,  344,  342,   15,    3,   17,  341,   19,
  530.       345,  345,  346,  346,  347,  347,  341,  341,  341,  341,
  531.       341,  341,  341,  348,  349,  349,   36,  350,  341,  341,
  532.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  533.       351,  341,  341,  351,  351,  341,  341,  341,  341,  341,
  534.       341,  341,  341,  348,  341,  341,  341,  341,  341,  341,
  535.       352,  352,  341,  348,  341,  341,  341,  341,  353,  341,
  536.       348,  341,  341,  341,  341,  341,  341,  348,  354,  354,
  537.       354,  341,  355,  355,  355,  355,  355,  341,  341,  341,
  538.  
  539.       341,  341,  341,  341,  341,  356,  357,  356,  356,  356,
  540.       356,  356,  356,  356,  356,  341,  341,  358,  341,  341,
  541.       341,  341,  341,  341,  341,  341,  348,  359,  359,  359,
  542.       359,  341,  341,  359,  360,  360,  361,  341,  341,  360,
  543.       360,  341,  341,  360,  341,  341,  362,  348,  363,  341,
  544.        36,  341,   36,   36,  350,  355,  341,  341,  341,  341,
  545.       341,  341,  351,  351,  351,  352,  352,  353,  354,  354,
  546.       354,  354,  355,  355,  355,  355,  355,  355,  341,  356,
  547.       357,  341,  356,  356,  356,  356,  356,  356,  356,  356,
  548.       356,  356,  356,  356,  358,  341,  358,  341,  359,  341,
  549.  
  550.       359,  359,  364,  134,  134,  360,  360,  361,  341,  361,
  551.       341,  341,  144,  360,  362,  363,  341,   36,   36,  351,
  552.       351,  352,  354,  354,  354,  354,  355,  355,  355,  355,
  553.       355,  355,  341,  356,  356,  356,  356,  356,  356,  356,
  554.       356,  356,  356,  356,  356,  356,  341,  364,  362,  205,
  555.       341,  341,  214,   36,   36,  351,  352,  354,  354,  354,
  556.       354,  355,  355,  355,  355,  355,  355,  356,  356,  356,
  557.       356,  356,  356,  356,  356,  356,  356,  356,  356,   36,
  558.        36,  351,  352,  354,  354,  354,  354,  355,  355,  355,
  559.       355,  355,  355,  356,  356,  356,  356,  356,  356,  356,
  560.  
  561.       356,  356,   36,  354,  354,  354,  354,  341,  355,  355,
  562.       355,  355,  355,  356,  356,  356,  356,  356,   36,  354,
  563.       354,  354,  308,  308,  355,  355,  355,  355,  356,  356,
  564.       356,   36,  354,  355,  355,  356,  356,  356,  354,  355,
  565.         0,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  566.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  567.       341,  341,  341,  341
  568.     } ;
  569.  
  570. static const short int yy_nxt[1019] =
  571.     {   0,
  572.       341,   29,   30,   29,   30,  148,  341,  148,   34,   59,
  573.        30,  150,  150,  150,   83,   30,  146,   31,   60,   31,
  574.        32,  147,   32,  161,  157,   61,   59,   30,   62,  152,
  575.        84,   64,   85,   86,  340,   60,  155,  155,  155,  150,
  576.       150,  150,   61,  151,  170,   62,  154,  171,   33,  157,
  577.        33,   29,   30,   83,   30,  157,   63,  152,   88,  157,
  578.       162,   87,  176,  158,  158,  177,  148,   31,  148,   84,
  579.        32,   85,   86,   63,   35,  148,  153,  148,  196,   35,
  580.        35,   36,   35,   35,   35,   35,   35,   35,   35,   35,
  581.        37,   35,   35,   35,   35,   35,   35,   35,   33,  197,
  582.  
  583.        87,   38,   28,   29,   30,   28,   39,   28,   28,   40,
  584.        41,   28,   42,   28,   43,   44,   45,   46,   28,   47,
  585.        28,   28,   32,   48,   49,   50,   51,   52,   28,   28,
  586.        53,   51,   51,   51,   54,   51,   51,   51,   51,   51,
  587.        51,   55,   51,   51,   51,   51,   51,   51,   51,   51,
  588.        33,   56,   28,   57,   65,   66,   30,   65,   65,   65,
  589.        65,   65,   65,   65,   65,   65,   65,   65,   65,   65,
  590.        65,   67,   65,   68,   69,   65,   70,   65,   71,   65,
  591.        65,   65,   65,   71,   71,   72,   71,   71,   71,   71,
  592.        71,   71,   71,   71,   71,   71,   71,   71,   71,   71,
  593.  
  594.        71,   71,   73,   65,   65,   65,   75,   76,   30,   75,
  595.        75,   75,   75,   75,   75,   75,   75,   75,   75,   75,
  596.        75,   75,   75,   77,   75,   75,   78,   75,   75,   75,
  597.        79,   75,   75,   75,   75,   79,   79,   79,   79,   79,
  598.        79,   79,   79,   79,   79,   79,   79,   79,   79,   79,
  599.        79,   79,   79,   79,   80,   75,   75,   75,   29,   30,
  600.       129,  130,  157,  146,  339,  151,  146,  146,  147,  158,
  601.       160,  147,  147,  158,   31,  146,  131,   32,  244,  132,
  602.       147,   89,  158,  148,  245,  148,   89,   89,   89,   89,
  603.        89,   89,   89,   89,   89,   89,   89,   89,   90,   89,
  604.  
  605.        89,   89,   89,   91,   89,   92,   93,  133,  148,  157,
  606.       148,   93,   93,   93,   93,   93,   94,   93,   93,   93,
  607.        93,   93,   95,   96,   93,   93,   93,   93,   97,   93,
  608.       338,  337,   98,   28,   29,   30,   28,   28,   28,   28,
  609.        28,   99,   28,  100,  101,  102,   28,  103,   28,  104,
  610.        31,   28,   28,   32,   28,  105,   28,  106,  107,   28,
  611.        28,   28,  108,  106,  109,  106,  106,  106,  106,  106,
  612.       110,  111,  106,  106,  106,  112,  113,  106,  114,  115,
  613.       106,   33,   28,   28,   28,  117,   30,  146,  148,  118,
  614.       148,  146,  147,  119,  120,  121,  147,  336,  122,  200,
  615.  
  616.       202,  123,  200,  209,  124,  203,  129,  130,  200,  201,
  617.       125,  134,  184,  211,  185,  212,  186,  335,  190,  191,
  618.       218,  148,  131,  148,  210,  132,  192,  200,  200,  151,
  619.       200,  334,  126,  117,   30,  146,  200,  118,  127,  219,
  620.       147,  119,  120,  121,  151,  223,  122,  229,  224,  123,
  621.       230,  196,  124,  133,  201,  200,  200,  199,  125,  150,
  622.       150,  150,  155,  155,  155,  200,  209,  151,  199,  151,
  623.       151,  255,  197,  200,  254,  249,  303,  152,  333,  151,
  624.       126,  136,   30,  200,  280,  137,  249,  210,  331,  138,
  625.       281,  151,  151,  200,  319,  332,  330,  139,  329,  151,
  626.  
  627.       140,  200,  328,  249,  327,  326,  141,  325,  322,  321,
  628.       320,  318,  317,  316,  249,  315,  314,  313,  312,  311,
  629.       310,  309,  308,  307,  306,  305,  304,  221,  142,  151,
  630.       143,  136,   30,  302,  301,  137,  144,  300,  299,  138,
  631.       298,  297,  296,  295,  294,  293,  292,  139,  291,  290,
  632.       140,  289,  288,  287,  286,  285,  141,  284,  283,  282,
  633.       279,  278,  277,  276,  275,  274,  273,  272,  271,  270,
  634.       269,  268,  267,  266,  265,  264,  263,  262,  142,  261,
  635.       143,  204,  260,  204,  259,  258,  257,  256,  252,  251,
  636.       207,  247,  246,  243,  242,  241,  240,  239,  238,  237,
  637.  
  638.       200,  236,  235,  234,  205,  182,  233,  232,  231,  205,
  639.       205,  205,  205,  205,  205,  205,  205,  205,  205,  205,
  640.       205,  205,  205,  205,  205,  205,  205,  205,  200,  213,
  641.       228,  213,  227,  226,  225,  222,  221,  220,  157,  157,
  642.       159,  217,  151,  145,  209,  207,  196,  198,  145,  194,
  643.       193,  189,  214,  188,  187,  183,  182,  214,  214,  214,
  644.       214,  214,  214,  214,  214,  214,  214,  214,  214,  214,
  645.       214,  214,  214,  214,  214,  214,  199,  179,  199,  178,
  646.       175,  174,  172,  145,  145,  167,  145,  145,  165,  164,
  647.       158,  159,  157,  250,  158,  159,  158,  157,  145,  250,
  648.  
  649.       341,   34,   34,   34,  250,  250,  250,  250,  250,  250,
  650.       250,  250,  250,  250,  250,  250,  250,  250,  250,  250,
  651.       250,  250,  250,  253,   81,   74,   34,   34,  341,  253,
  652.       341,  341,  341,  341,  253,  253,  253,  253,  253,  253,
  653.       253,  253,  253,  253,  253,  253,  253,  253,  253,  253,
  654.       253,  253,  253,  323,  323,  323,  323,  323,  323,  323,
  655.       323,  323,  323,  323,  323,  323,  323,  323,  323,  323,
  656.       323,  324,  323,  341,  323,  323,  323,  324,  323,  323,
  657.       323,  323,  324,  324,  324,  324,  324,  324,  324,  324,
  658.       324,  324,  324,  324,  324,  324,  324,  324,  324,  324,
  659.  
  660.       324,  341,  323,  323,  323,  323,  341,  341,  341,  341,
  661.       341,  323,  341,  341,  341,  341,  323,  323,  323,  323,
  662.       323,  323,  323,  323,  323,  323,  323,  323,  323,  323,
  663.       323,  323,  323,  323,  323,   28,   28,   28,   28,   28,
  664.        28,   28,   58,   58,   58,   58,   58,   58,   58,   82,
  665.        82,   82,   82,   82,   82,   82,  116,  116,  116,  116,
  666.       116,  116,  116,  128,  128,  128,  128,  128,  128,  128,
  667.       135,  135,  135,  135,  135,  135,  135,  149,  341,  341,
  668.       341,  341,  149,  151,  151,  341,  151,  151,  151,  156,
  669.       156,  341,  341,  341,  156,  163,  341,  163,  166,  341,
  670.  
  671.       166,  168,  341,  168,  169,  341,  169,  173,  341,  173,
  672.       180,  341,  180,  181,  181,  181,  181,  181,  181,  181,
  673.       195,  195,  341,  195,  195,  195,  195,  199,  199,  199,
  674.       199,  199,  199,  199,  206,  206,  341,  341,  206,  206,
  675.       206,  208,  208,  341,  208,  208,  208,  208,  215,  215,
  676.       341,  215,  215,  215,  215,  216,  341,  216,  248,  248,
  677.       248,  248,  248,  248,  248,   27,  341,  341,  341,  341,
  678.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  679.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  680.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  681.  
  682.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  683.       341,  341,  341,  341,  341,  341,  341,  341
  684.     } ;
  685.  
  686. static const short int yy_chk[1019] =
  687.     {   0,
  688.         0,    1,    1,    2,    2,   34,    0,   34,    2,    7,
  689.         7,   35,   35,   35,   13,   13,   31,    1,    7,    2,
  690.         1,   31,    2,   48,   48,    7,    8,    8,    7,   35,
  691.        13,    8,   13,   13,  335,    8,   38,   38,   38,   36,
  692.        36,   36,    8,   37,   90,    8,   37,   90,    1,   41,
  693.         2,    3,    3,   14,   14,   44,    7,   36,   14,   50,
  694.        50,   13,   96,   41,   44,   96,   64,    3,   64,   14,
  695.         3,   14,   14,    8,    3,   74,   36,   74,  118,    3,
  696.         3,    3,    3,    3,    3,    3,    3,    3,    3,    3,
  697.         3,    3,    3,    3,    3,    3,    3,    3,    3,  118,
  698.  
  699.        14,    3,    5,    5,    5,    5,    5,    5,    5,    5,
  700.         5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
  701.         5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
  702.         5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
  703.         5,    5,    5,    5,    5,    5,    5,    5,    5,    5,
  704.         5,    5,    5,    5,    9,    9,    9,    9,    9,    9,
  705.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  706.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  707.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  708.         9,    9,    9,    9,    9,    9,    9,    9,    9,    9,
  709.  
  710.         9,    9,    9,    9,    9,    9,   11,   11,   11,   11,
  711.        11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
  712.        11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
  713.        11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
  714.        11,   11,   11,   11,   11,   11,   11,   11,   11,   11,
  715.        11,   11,   11,   11,   11,   11,   11,   11,   15,   15,
  716.        23,   23,   46,   47,  333,  332,   61,   67,   47,   46,
  717.        46,   61,   67,   47,   15,   77,   23,   15,  193,   23,
  718.        77,   15,   56,   81,  193,   81,   15,   15,   15,   15,
  719.        15,   15,   15,   15,   15,   15,   15,   15,   15,   15,
  720.  
  721.        15,   15,   15,   15,   15,   15,   17,   23,   88,   56,
  722.        88,   17,   17,   17,   17,   17,   17,   17,   17,   17,
  723.        17,   17,   17,   17,   17,   17,   17,   17,   17,   17,
  724.       331,  330,   17,   19,   19,   19,   19,   19,   19,   19,
  725.        19,   19,   19,   19,   19,   19,   19,   19,   19,   19,
  726.        19,   19,   19,   19,   19,   19,   19,   19,   19,   19,
  727.        19,   19,   19,   19,   19,   19,   19,   19,   19,   19,
  728.        19,   19,   19,   19,   19,   19,   19,   19,   19,   19,
  729.        19,   19,   19,   19,   19,   21,   21,   84,  127,   21,
  730.       127,  123,   84,   21,   21,   21,  123,  329,   21,  128,
  731.  
  732.       131,   21,  130,  137,   21,  131,   24,   24,  131,  129,
  733.        21,   24,  109,  138,  109,  138,  109,  327,  113,  113,
  734.       153,  148,   24,  148,  137,   24,  113,  128,  129,  153,
  735.       130,  325,   21,   22,   22,  139,  131,   22,   22,  154,
  736.       139,   22,   22,   22,  154,  170,   22,  176,  170,   22,
  737.       176,  195,   22,   24,  201,  199,  129,  203,   22,  150,
  738.       150,  150,  155,  155,  155,  202,  208,  219,  248,  218,
  739.       281,  219,  195,  201,  218,  203,  281,  150,  321,  254,
  740.        22,   25,   25,  199,  254,   25,  248,  208,  318,   25,
  741.       255,  319,  303,  202,  303,  319,  317,   25,  314,  255,
  742.  
  743.        25,  201,  313,  203,  311,  310,   25,  309,  307,  305,
  744.       304,  302,  301,  299,  248,  298,  296,  293,  292,  291,
  745.       290,  289,  288,  287,  286,  285,  284,  282,   25,  280,
  746.        25,   26,   26,  279,  278,   26,   26,  277,  276,   26,
  747.       275,  274,  273,  271,  270,  267,  266,   26,  265,  264,
  748.        26,  263,  262,  261,  260,  259,   26,  258,  257,  256,
  749.       246,  245,  244,  243,  242,  241,  240,  239,  237,  236,
  750.       235,  234,  232,  231,  230,  229,  228,  227,   26,  226,
  751.        26,  134,  225,  134,  224,  223,  222,  220,  212,  211,
  752.       207,  198,  194,  192,  191,  190,  189,  188,  187,  186,
  753.  
  754.       134,  185,  184,  183,  134,  181,  179,  178,  177,  134,
  755.       134,  134,  134,  134,  134,  134,  134,  134,  134,  134,
  756.       134,  134,  134,  134,  134,  134,  134,  134,  134,  144,
  757.       175,  144,  174,  172,  171,  167,  165,  164,  162,  161,
  758.       160,  152,  151,  145,  141,  136,  125,  119,  117,  115,
  759.       114,  112,  144,  111,  110,  108,  107,  144,  144,  144,
  760.       144,  144,  144,  144,  144,  144,  144,  144,  144,  144,
  761.       144,  144,  144,  144,  144,  144,  205,  104,  205,   97,
  762.        95,   94,   91,   83,   76,   72,   66,   59,   55,   54,
  763.        53,   52,   49,  205,   43,   42,   40,   39,   29,  205,
  764.  
  765.        27,   20,   18,   16,  205,  205,  205,  205,  205,  205,
  766.       205,  205,  205,  205,  205,  205,  205,  205,  205,  205,
  767.       205,  205,  205,  214,   12,   10,    6,    4,    0,  214,
  768.         0,    0,    0,    0,  214,  214,  214,  214,  214,  214,
  769.       214,  214,  214,  214,  214,  214,  214,  214,  214,  214,
  770.       214,  214,  214,  308,  308,  308,  308,  308,  308,  308,
  771.       308,  308,  308,  308,  308,  308,  308,  308,  308,  308,
  772.       308,  308,  308,    0,  308,  308,  308,  308,  308,  308,
  773.       308,  308,  308,  308,  308,  308,  308,  308,  308,  308,
  774.       308,  308,  308,  308,  308,  308,  308,  308,  308,  308,
  775.  
  776.       308,    0,  308,  308,  308,  323,    0,    0,    0,    0,
  777.         0,  323,    0,    0,    0,    0,  323,  323,  323,  323,
  778.       323,  323,  323,  323,  323,  323,  323,  323,  323,  323,
  779.       323,  323,  323,  323,  323,  342,  342,  342,  342,  342,
  780.       342,  342,  343,  343,  343,  343,  343,  343,  343,  344,
  781.       344,  344,  344,  344,  344,  344,  345,  345,  345,  345,
  782.       345,  345,  345,  346,  346,  346,  346,  346,  346,  346,
  783.       347,  347,  347,  347,  347,  347,  347,  348,    0,    0,
  784.         0,    0,  348,  349,  349,    0,  349,  349,  349,  350,
  785.       350,    0,    0,    0,  350,  351,    0,  351,  352,    0,
  786.  
  787.       352,  353,    0,  353,  354,    0,  354,  355,    0,  355,
  788.       356,    0,  356,  357,  357,  357,  357,  357,  357,  357,
  789.       358,  358,    0,  358,  358,  358,  358,  359,  359,  359,
  790.       359,  359,  359,  359,  360,  360,    0,    0,  360,  360,
  791.       360,  361,  361,    0,  361,  361,  361,  361,  362,  362,
  792.         0,  362,  362,  362,  362,  363,    0,  363,  364,  364,
  793.       364,  364,  364,  364,  364,  341,  341,  341,  341,  341,
  794.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  795.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  796.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  797.  
  798.       341,  341,  341,  341,  341,  341,  341,  341,  341,  341,
  799.       341,  341,  341,  341,  341,  341,  341,  341
  800.     } ;
  801.  
  802. static yy_state_type yy_last_accepting_state;
  803. static YY_CHAR *yy_last_accepting_cpos;
  804.  
  805. static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;
  806. static YY_CHAR *yy_full_match;
  807. static int yy_lp;
  808. static int yy_looking_for_trail_begin = 0;
  809. static int yy_full_lp;
  810. static int *yy_full_state;
  811. #define YY_TRAILING_MASK 0x2000
  812. #define YY_TRAILING_HEAD_MASK 0x4000
  813. #define REJECT \
  814. { \
  815. *yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \
  816. yy_cp = yy_full_match; /* restore poss. backed-over text */ \
  817. yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \
  818. yy_state_ptr = yy_full_state; /* restore orig. state */ \
  819. yy_current_state = *yy_state_ptr; /* restore curr. state */ \
  820. ++yy_lp; \
  821. goto find_rule; \
  822. }
  823. #define yymore() yymore_used_but_not_detected
  824. #define YY_MORE_ADJ 0
  825.  
  826. /* these variables are all declared out here so that section 3 code can
  827.  * manipulate them
  828.  */
  829. /* points to current character in buffer */
  830. static YY_CHAR *yy_c_buf_p = (YY_CHAR *) 0;
  831. static int yy_init = 1;        /* whether we need to initialize */
  832. static int yy_start = 0;    /* start state number */
  833.  
  834. /* flag which is used to allow yywrap()'s to do buffer switches
  835.  * instead of setting up a fresh yyin.  A bit of a hack ...
  836.  */
  837. static int yy_did_buffer_switch_on_eof;
  838.  
  839. static yy_state_type yy_get_previous_state YY_PROTO(( void ));
  840. static yy_state_type yy_try_NUL_trans YY_PROTO(( yy_state_type current_state ));
  841. static int yy_get_next_buffer YY_PROTO(( void ));
  842. static void yyunput YY_PROTO(( YY_CHAR c, YY_CHAR *buf_ptr ));
  843. void yyrestart YY_PROTO(( FILE *input_file ));
  844. void yy_switch_to_buffer YY_PROTO(( YY_BUFFER_STATE new_buffer ));
  845. void yy_load_buffer_state YY_PROTO(( void ));
  846. YY_BUFFER_STATE yy_create_buffer YY_PROTO(( FILE *file, int size ));
  847. void yy_delete_buffer YY_PROTO(( YY_BUFFER_STATE b ));
  848. void yy_init_buffer YY_PROTO(( YY_BUFFER_STATE b, FILE *file ));
  849.  
  850. #define yy_new_buffer yy_create_buffer
  851.  
  852. #ifdef __cplusplus
  853. static int yyinput YY_PROTO(( void ));
  854. #else
  855. static int input YY_PROTO(( void ));
  856. #endif
  857.  
  858. YY_DECL
  859.     {
  860.     register yy_state_type yy_current_state;
  861.     register YY_CHAR *yy_cp, *yy_bp;
  862.     register int yy_act;
  863.  
  864.  
  865.  
  866.  /************************************************************************************/
  867.  /*                    la supression des commentaires et macros                      */
  868.  /************************************************************************************/
  869.  
  870.  
  871.     if ( yy_init )
  872.     {
  873.     YY_USER_INIT;
  874.  
  875.     if ( ! yy_start )
  876.         yy_start = 1;    /* first start state */
  877.  
  878.     if ( ! yyin )
  879.         yyin = stdin;
  880.  
  881.     if ( ! yyout )
  882.         yyout = stdout;
  883.  
  884.     if ( yy_current_buffer )
  885.         yy_init_buffer( yy_current_buffer, yyin );
  886.     else
  887.         yy_current_buffer = yy_create_buffer( yyin, YY_BUF_SIZE );
  888.  
  889.     yy_load_buffer_state();
  890.  
  891.     yy_init = 0;
  892.     }
  893.  
  894.     while ( 1 )        /* loops until end-of-file is reached */
  895.     {
  896.     yy_cp = yy_c_buf_p;
  897.  
  898.     /* support of yytext */
  899.     *yy_cp = yy_hold_char;
  900.  
  901.     /* yy_bp points to the position in yy_ch_buf of the start of the
  902.      * current run.
  903.      */
  904.     yy_bp = yy_cp;
  905.  
  906.     yy_current_state = yy_start;
  907.     if ( yy_bp[-1] == '\n' )
  908.         ++yy_current_state;
  909.     yy_state_ptr = yy_state_buf;
  910.     *yy_state_ptr++ = yy_current_state;
  911. yy_match:
  912.     do
  913.         {
  914.         register YY_CHAR yy_c = yy_ec[*yy_cp];
  915.         while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  916.         {
  917.         yy_current_state = yy_def[yy_current_state];
  918.         if ( yy_current_state >= 342 )
  919.             yy_c = yy_meta[yy_c];
  920.         }
  921.         yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  922.         *yy_state_ptr++ = yy_current_state;
  923.         ++yy_cp;
  924.         }
  925.     while ( yy_current_state != 341 );
  926.  
  927. yy_find_action:
  928.     yy_current_state = *--yy_state_ptr;
  929.     yy_lp = yy_accept[yy_current_state];
  930. find_rule: /* we branch to this label when backtracking */
  931.     for ( ; ; ) /* until we find what rule we matched */
  932.         {
  933.         if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )
  934.         {
  935.         yy_act = yy_acclist[yy_lp];
  936.         if ( yy_act & YY_TRAILING_HEAD_MASK ||
  937.              yy_looking_for_trail_begin )
  938.             {
  939.             if ( yy_act == yy_looking_for_trail_begin )
  940.             {
  941.             yy_looking_for_trail_begin = 0;
  942.             yy_act &= ~YY_TRAILING_HEAD_MASK;
  943.             break;
  944.             }
  945.             }
  946.         else if ( yy_act & YY_TRAILING_MASK )
  947.             {
  948.             yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK;
  949.             yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK;
  950.             }
  951.         else
  952.             {
  953.             yy_full_match = yy_cp;
  954.             yy_full_state = yy_state_ptr;
  955.             yy_full_lp = yy_lp;
  956.             break;
  957.             }
  958.         ++yy_lp;
  959.         goto find_rule;
  960.         }
  961.         --yy_cp;
  962.         yy_current_state = *--yy_state_ptr;
  963.         yy_lp = yy_accept[yy_current_state];
  964.         }
  965.  
  966.     YY_DO_BEFORE_ACTION;
  967.     YY_USER_ACTION;
  968.  
  969. do_action:    /* this label is used only to access EOF actions */
  970.  
  971.  
  972.     switch ( yy_act )
  973.         {
  974. case 1:
  975. # line 125 "gen.l"
  976.                                           int current;
  977.  
  978.                                           current = '\0';
  979.                                           while (current != '/') {
  980.                                             while (current != '*') {
  981.                               current = input();
  982.                          if (current == '\n')
  983.                         line_count++;
  984.                          else if (current == EOF)
  985.                         yyterminate ();
  986.                                             }
  987.                          current = input();
  988.                          if (current == '\n')
  989.                         line_count++;
  990.                          else if (current == EOF)
  991.                         yyterminate ();
  992.                                           }
  993.                                         }
  994.     YY_BREAK
  995. case 2:
  996. # line 146 "gen.l"
  997. {}
  998.     YY_BREAK
  999. case 3:
  1000. # line 149 "gen.l"
  1001. {
  1002.                                           int current;
  1003.                                           int previous;
  1004.  
  1005.                                           previous = '\\';
  1006.                                           while (previous == '\\') {
  1007.                                             current  = '\0';
  1008.                                             while (current != '\n') {
  1009.                                               previous = current;
  1010.                                               current  = input();
  1011.                   if (current == EOF )
  1012.             yyterminate ();
  1013.                                             }
  1014.                                             line_count++;
  1015.                                           }
  1016.                                         }
  1017.     YY_BREAK
  1018. case 4:
  1019. # line 167 "gen.l"
  1020. { line_count++; }
  1021.     YY_BREAK
  1022. case 5:
  1023. # line 170 "gen.l"
  1024. {}
  1025.     YY_BREAK
  1026.  /************************************************************************************/
  1027.  /*     le parcours de la liste des arguments d'une procedure ou d'une methode       */
  1028.  /************************************************************************************/
  1029. case 6:
  1030. # line 177 "gen.l"
  1031. {
  1032.                                           strcat(yylval.text, yytext);
  1033.                                           strcat(yylval.text, " ");
  1034.                                           BEGIN_STATE(PROC_STATE1);
  1035.                                         }
  1036.     YY_BREAK
  1037.  /************************************************************************************/
  1038.  /*     le parcours de la liste des arguments d'une procedure ou d'une methode       */
  1039.  /************************************************************************************/
  1040. case 7:
  1041. # line 188 "gen.l"
  1042. {
  1043.                                          int current;
  1044.                                          int  parent_level;
  1045.  
  1046.                                          arg_index             = 0;
  1047.                                          parent_level          = 1;
  1048.                                          tmp_line_count        = 0;
  1049.                                          arg_buff[arg_index++] = '(';
  1050.                                          while(parent_level != 0) {
  1051.                 current = input();
  1052.                                            switch(current) {
  1053.                            case EOF: yyterminate ();
  1054.                             break;
  1055.                                              case '(' : parent_level++;
  1056.                                                         break;
  1057.                                              case ')' : parent_level--;
  1058.                                                         break;
  1059.                                            }
  1060.                                            if (current == '\n')
  1061.                                              tmp_line_count++;
  1062.                                            if (arg_index < ARG_BUFF_SIZE)
  1063.                                              arg_buff[arg_index++] = current;
  1064.                                            else {
  1065.                                              yylval.position = line_count;
  1066.                                              return(LEX_ERROR_TOK);
  1067.                                            }
  1068.                                          }
  1069.                                          const_flag = False;
  1070.                                          BEGIN_STATE(PROC_STATE2);
  1071.                                        }
  1072.     YY_BREAK
  1073. case 8:
  1074. # line 219 "gen.l"
  1075. {
  1076.                                          unput(yytext[0]);
  1077.                                          UNSTACK_STATE();
  1078.                                          if (current_state != BODY_STATE)
  1079.                                            *yy_class_name = '\0';
  1080.                                        }
  1081.     YY_BREAK
  1082.  /************************************************************************************/
  1083.  /*              la recherche du token qui suit la liste des arguments               */
  1084.  /************************************************************************************/
  1085. case 9:
  1086. # line 231 "gen.l"
  1087. {
  1088.                                          while (--arg_index >= 0)
  1089.                                            unput(arg_buff[arg_index]);
  1090.                                          parent_level = 0;
  1091.                                          yylval.is_virtual = virtual_flag;
  1092.                                          virtual_flag      = False;
  1093.                                          BEGIN_STATE(ARG_STATE);
  1094.                                          return(CPLUS_TOK);
  1095.                                        }
  1096.     YY_BREAK
  1097. case 10:
  1098. # line 242 "gen.l"
  1099. {
  1100.                                          unput('{');
  1101.                                          while (--arg_index >= 0)
  1102.                                            unput(arg_buff[arg_index]);
  1103.                                          parent_level = 0;
  1104.                                          yylval.is_virtual = virtual_flag;
  1105.                                          virtual_flag      = False;
  1106.                                          BEGIN_STATE(ARG_STATE);
  1107.                                          return(CPLUS_TOK);
  1108.                                        }
  1109.     YY_BREAK
  1110. case 11:
  1111. # line 254 "gen.l"
  1112. { const_flag = True; }
  1113.     YY_BREAK
  1114. case 12:
  1115. # line 257 "gen.l"
  1116. {
  1117.                                          line_count  += tmp_line_count;
  1118.                                          virtual_flag = False;
  1119.                                          UNSTACK_STATE();
  1120.                                          return(C_TOK);
  1121.                                        }
  1122.     YY_BREAK
  1123. case 13:
  1124. # line 265 "gen.l"
  1125. {
  1126.                                          unput(';');
  1127.                                          UNSTACK_STATE();
  1128.                                          if (current_state == BODY_STATE) {
  1129.                                            while (--arg_index >= 0)
  1130.                                              unput(arg_buff[arg_index]);
  1131.                                            parent_level = 0;
  1132.                                            yylval.is_virtual = virtual_flag;
  1133.                                            virtual_flag      = False;
  1134.                                            STACK_STATE(ARG_STATE);
  1135.                                            return(DECL_TOK);
  1136.                                          }
  1137.                                          else
  1138.                                            line_count += tmp_line_count;
  1139.                                          virtual_flag = False;
  1140.                                        }
  1141.     YY_BREAK
  1142. case 14:
  1143. # line 283 "gen.l"
  1144. {
  1145.                                          unput('=');
  1146.                                          UNSTACK_STATE();
  1147.                                          if (current_state == BODY_STATE) {
  1148.                                            while (--arg_index >= 0)
  1149.                                              unput(arg_buff[arg_index]);
  1150.                                            parent_level = 0;
  1151.                                            yylval.is_virtual = virtual_flag;
  1152.                                            virtual_flag      = False;
  1153.                                            STACK_STATE(ARG_STATE);
  1154.                                            return(DECL_TOK);
  1155.                                          }
  1156.                                          else
  1157.                                            line_count += tmp_line_count;
  1158.                                          virtual_flag = False;
  1159.                                        }
  1160.     YY_BREAK
  1161. case 15:
  1162. # line 301 "gen.l"
  1163.                                          unput(yytext[0]);
  1164.                                          line_count += tmp_line_count;
  1165.                                          virtual_flag = False;
  1166.                                          UNSTACK_STATE();
  1167.                                        }
  1168.     YY_BREAK
  1169.  /************************************************************************************/
  1170.  /*                         La lecture du nom de la classe                           */
  1171.  /************************************************************************************/
  1172. case 16:
  1173. # line 313 "gen.l"
  1174. {
  1175.                                          strcpy(yylval.text, yytext);
  1176.                                          yylval.position = line_count;
  1177.                                          BEGIN_STATE(CLASS_STATE2);
  1178.                                        }
  1179.     YY_BREAK
  1180. case 17:
  1181. # line 320 "gen.l"
  1182. { unput(yytext[0]); BEGIN_STATE(MAIN_STATE); }
  1183.     YY_BREAK
  1184. case 18:
  1185. # line 323 "gen.l"
  1186. {
  1187.                                          BEGIN_STATE(PARENT_STATE);
  1188.                                          return(IDENT_TOK);
  1189.                                        }
  1190.     YY_BREAK
  1191. case 19:
  1192. # line 328 "gen.l"
  1193. {
  1194.                                          unput('{');
  1195.                                          BEGIN_STATE(PARENT_STATE);
  1196.                                          return(IDENT_TOK);
  1197.                                        }
  1198.     YY_BREAK
  1199. case 20:
  1200. # line 334 "gen.l"
  1201. { unput(yytext[0]); BEGIN_STATE(MAIN_STATE); }
  1202.     YY_BREAK
  1203.  /************************************************************************************/
  1204.  /*                               Quelques mots clefs                                */
  1205.  /************************************************************************************/
  1206. case 21:
  1207. # line 341 "gen.l"
  1208. { return(PUBLIC_TOK);    }
  1209.     YY_BREAK
  1210. case 22:
  1211. # line 343 "gen.l"
  1212. { return(PROTECTED_TOK); }
  1213.     YY_BREAK
  1214. case 23:
  1215. # line 345 "gen.l"
  1216. { return(PRIVATE_TOK);   }
  1217.     YY_BREAK
  1218.  /************************************************************************************/
  1219.  /*                       La lecture de la liste des parents                         */
  1220.  /************************************************************************************/
  1221. case 24:
  1222. # line 352 "gen.l"
  1223. {}
  1224.     YY_BREAK
  1225. case 25:
  1226. # line 354 "gen.l"
  1227. {
  1228.                                          strcpy(yylval.text, yytext);
  1229.                                          yylval.position = line_count;
  1230.                                          return(IDENT_TOK);
  1231.                                        }
  1232.     YY_BREAK
  1233. case 26:
  1234. # line 360 "gen.l"
  1235. { BEGIN_STATE(BODY_STATE); return '{'; }
  1236.     YY_BREAK
  1237.  /************************************************************************************/
  1238.  /*                  La lecture des "members" declares dans une classe               */
  1239.  /************************************************************************************/
  1240. case 27:
  1241. # line 367 "gen.l"
  1242. { virtual_flag = True; }
  1243.     YY_BREAK
  1244. case 28:
  1245. # line 369 "gen.l"
  1246. { LINE_COUNT(); }
  1247.     YY_BREAK
  1248. case 29:
  1249. # line 371 "gen.l"
  1250.                                          *yy_class_name = '\0';
  1251.                                          BEGIN_STATE(MAIN_STATE);
  1252.                                          return('}');
  1253.                                        }
  1254.     YY_BREAK
  1255.  /************************************************************************************/
  1256.  /*      La lecture de la liste des arguments d'une methode ou d'une procedure       */
  1257.  /************************************************************************************/
  1258. case 30:
  1259. # line 382 "gen.l"
  1260. { return(UNSIGNED_TOK); }
  1261.     YY_BREAK
  1262. case 31:
  1263. # line 384 "gen.l"
  1264. { return(SIGNED_TOK);   }
  1265.     YY_BREAK
  1266. case 32:
  1267. # line 386 "gen.l"
  1268. { return(CHAR_TOK);     }
  1269.     YY_BREAK
  1270. case 33:
  1271. # line 388 "gen.l"
  1272. { return(SHORT_TOK);    }
  1273.     YY_BREAK
  1274. case 34:
  1275. # line 390 "gen.l"
  1276. { return(INT_TOK);      }
  1277.     YY_BREAK
  1278. case 35:
  1279. # line 392 "gen.l"
  1280. { return(LONG_TOK);     }
  1281.     YY_BREAK
  1282. case 36:
  1283. # line 394 "gen.l"
  1284. { return(STRUCT_TOK);   }
  1285.     YY_BREAK
  1286. case 37:
  1287. # line 396 "gen.l"
  1288. { return(UNION_TOK);    }
  1289.     YY_BREAK
  1290. case 38:
  1291. # line 398 "gen.l"
  1292. { return(CLASS_TOK);    }
  1293.     YY_BREAK
  1294. case 39:
  1295. # line 400 "gen.l"
  1296. { return(CONST_TOK);    }
  1297.     YY_BREAK
  1298. case 40:
  1299. # line 402 "gen.l"
  1300. { return('*');          }
  1301.     YY_BREAK
  1302. case 41:
  1303. # line 404 "gen.l"
  1304. { return('&');          }
  1305.     YY_BREAK
  1306. case 42:
  1307. # line 406 "gen.l"
  1308. { LINE_COUNT(); return(ARRAY_TOK);    }
  1309.     YY_BREAK
  1310. case 43:
  1311. # line 408 "gen.l"
  1312. { return(',');          }
  1313.     YY_BREAK
  1314. case 44:
  1315. # line 410 "gen.l"
  1316. {}
  1317.     YY_BREAK
  1318. case 45:
  1319. # line 412 "gen.l"
  1320. {}
  1321.     YY_BREAK
  1322. case 46:
  1323. # line 414 "gen.l"
  1324. {}
  1325.     YY_BREAK
  1326. case 47:
  1327. # line 417 "gen.l"
  1328. {
  1329.                                          strcpy(yylval.text, yytext);
  1330.                                          return(IDENT_TOK);
  1331.                                        }
  1332.     YY_BREAK
  1333. case 48:
  1334. # line 423 "gen.l"
  1335. {
  1336.                                          strcpy(yylval.text, yytext);
  1337.                                          return(IDENT_TOK);
  1338.                                        }
  1339.     YY_BREAK
  1340. case 49:
  1341. # line 429 "gen.l"
  1342. { BEGIN_STATE(INIT_STATE); }
  1343.     YY_BREAK
  1344. case 50:
  1345. # line 432 "gen.l"
  1346. {
  1347.                                          parent_level++;
  1348.                                          return('(');
  1349.                                        }
  1350.     YY_BREAK
  1351. case 51:
  1352. # line 438 "gen.l"
  1353. {
  1354.                                          if ((--parent_level) == 0)
  1355.                                            BEGIN_STATE(TAIL_STATE);
  1356.                                          return(')');
  1357.                                        }
  1358.     YY_BREAK
  1359. case 52:
  1360. # line 445 "gen.l"
  1361. {}
  1362.     YY_BREAK
  1363. case 53:
  1364. # line 448 "gen.l"
  1365. {}
  1366.     YY_BREAK
  1367. case 54:
  1368. # line 451 "gen.l"
  1369. {
  1370.                                          int  parent_level;
  1371.                                          char current;
  1372.  
  1373.                                          parent_level = 1;
  1374.                                          while (parent_level != 0) {
  1375.                                            current = input();
  1376.                                           switch(current) {
  1377.                            case EOF: yyterminate ();
  1378.                             break;
  1379.                                              case '(' : parent_level++;
  1380.                                                         break;
  1381.                                              case ')' : parent_level--;
  1382.                                                         break;
  1383.                                            }
  1384.                                       }
  1385.                                     }
  1386.     YY_BREAK
  1387. case 55:
  1388. # line 470 "gen.l"
  1389. { unput(','); BEGIN_STATE(ARG_STATE); }
  1390.     YY_BREAK
  1391. case 56:
  1392. # line 473 "gen.l"
  1393. { unput(')'); BEGIN_STATE(ARG_STATE); }
  1394.     YY_BREAK
  1395. case 57:
  1396. # line 476 "gen.l"
  1397. {}
  1398.     YY_BREAK
  1399.  /************************************************************************************/
  1400.  /*                                  Les Divers                                      */
  1401.  /************************************************************************************/
  1402. case 58:
  1403. # line 483 "gen.l"
  1404.                                          LINE_COUNT(); 
  1405.                                          UNSTACK_STATE();
  1406.                                          if (const_flag == True) {
  1407.                                            const_flag = False;
  1408.                                            return(CONST_TOK);
  1409.                                          }
  1410.                                        }
  1411.     YY_BREAK
  1412.  /************************************************************************************/
  1413.  /*                                  Les Divers                                      */
  1414.  /************************************************************************************/
  1415. case 59:
  1416. # line 497 "gen.l"
  1417. { bracket_level++; }
  1418.     YY_BREAK
  1419. case 60:
  1420. # line 499 "gen.l"
  1421. {
  1422.                                          if ((--bracket_level) == 0) {
  1423.                                            UNSTACK_STATE();
  1424.                                            return(SYNC_TOK);
  1425.                                          }
  1426.                                        }
  1427.     YY_BREAK
  1428. case 61:
  1429. # line 506 "gen.l"
  1430. {}
  1431.     YY_BREAK
  1432. case 62:
  1433. # line 508 "gen.l"
  1434. {}
  1435.     YY_BREAK
  1436. case 63:
  1437. # line 510 "gen.l"
  1438. {}
  1439.     YY_BREAK
  1440. case 64:
  1441. # line 512 "gen.l"
  1442. {}
  1443.     YY_BREAK
  1444. case 65:
  1445. # line 514 "gen.l"
  1446. {}
  1447.     YY_BREAK
  1448. case 66:
  1449. # line 516 "gen.l"
  1450. {}
  1451.     YY_BREAK
  1452. case 67:
  1453. # line 518 "gen.l"
  1454. {
  1455.                                          bracket_level = 1;
  1456.                                          STACK_STATE(CODE_STATE);
  1457.                                        }
  1458.     YY_BREAK
  1459. case 68:
  1460. # line 524 "gen.l"
  1461. { return(SYNC_TOK); }
  1462.     YY_BREAK
  1463.  /************************************************************************************/
  1464. case 69:
  1465. # line 529 "gen.l"
  1466. {
  1467.                                          BEGIN_STATE(CLASS_STATE1);
  1468.                                        }
  1469.     YY_BREAK
  1470. case 70:
  1471. # line 534 "gen.l"
  1472. {
  1473.                                          char* current;
  1474.  
  1475.                                          current = yytext + yyleng - 2;
  1476.                                          while ((--current) >= yytext) {
  1477.                                            if (isspace(*current)) {
  1478.                                              if ((*current) == '\n')
  1479.                                                line_count++;
  1480.                                            }
  1481.                                            else
  1482.                                              break;
  1483.                                          }
  1484.                                          *(current + 1) = '\0';
  1485.                                          strcpy(yy_class_name, yytext);
  1486.                                        }
  1487.     YY_BREAK
  1488. case 71:
  1489. # line 551 "gen.l"
  1490. {
  1491.                                          strcpy(yylval.text, "operator ");
  1492.                                          yylval.position = line_count;
  1493.                                          STACK_STATE(OPERATOR_STATE);
  1494.                                        }
  1495.     YY_BREAK
  1496. case 72:
  1497. # line 558 "gen.l"
  1498. {
  1499.                  if ( yytext[0] != '~' )
  1500.                                              strcpy(yylval.text, yytext);
  1501.                  else {
  1502.             register char *p = yytext + 1;
  1503.             yylval.text [0]= '~';
  1504.             while (  isspace( *p ) ) 
  1505.                 p++;
  1506.             strcpy(&(yylval.text[1]), p );
  1507.             LINE_COUNT();
  1508.                  }
  1509.                                          yylval.position = line_count;
  1510.                                          STACK_STATE(PROC_STATE1);
  1511.                                        }
  1512.     YY_BREAK
  1513. case 73:
  1514. # line 574 "gen.l"
  1515. {}
  1516.     YY_BREAK
  1517.  /************************************************************************************/
  1518. case 74:
  1519. # line 579 "gen.l"
  1520. ECHO;
  1521.     YY_BREAK
  1522.         case YY_STATE_EOF(INITIAL):
  1523.         case YY_STATE_EOF(MAIN_STATE):
  1524.         case YY_STATE_EOF(OPERATOR_STATE):
  1525.         case YY_STATE_EOF(PROC_STATE1):
  1526.         case YY_STATE_EOF(PROC_STATE2):
  1527.         case YY_STATE_EOF(CLASS_STATE1):
  1528.         case YY_STATE_EOF(CLASS_STATE2):
  1529.         case YY_STATE_EOF(PARENT_STATE):
  1530.         case YY_STATE_EOF(BODY_STATE):
  1531.         case YY_STATE_EOF(ARG_STATE):
  1532.         case YY_STATE_EOF(INIT_STATE):
  1533.         case YY_STATE_EOF(TAIL_STATE):
  1534.         case YY_STATE_EOF(CODE_STATE):
  1535.         yyterminate();
  1536.  
  1537.         case YY_END_OF_BUFFER:
  1538.         {
  1539.         /* amount of text matched not including the EOB char */
  1540.         int yy_amount_of_matched_text = yy_cp - yytext - 1;
  1541.  
  1542.         /* undo the effects of YY_DO_BEFORE_ACTION */
  1543.         *yy_cp = yy_hold_char;
  1544.  
  1545.         /* note that here we test for yy_c_buf_p "<=" to the position
  1546.          * of the first EOB in the buffer, since yy_c_buf_p will
  1547.          * already have been incremented past the NUL character
  1548.          * (since all states make transitions on EOB to the end-
  1549.          * of-buffer state).  Contrast this with the test in yyinput().
  1550.          */
  1551.         if ( yy_c_buf_p <= &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1552.             /* this was really a NUL */
  1553.             {
  1554.             yy_state_type yy_next_state;
  1555.  
  1556.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1557.  
  1558.             yy_current_state = yy_get_previous_state();
  1559.  
  1560.             /* okay, we're now positioned to make the
  1561.              * NUL transition.  We couldn't have
  1562.              * yy_get_previous_state() go ahead and do it
  1563.              * for us because it doesn't know how to deal
  1564.              * with the possibility of jamming (and we
  1565.              * don't want to build jamming into it because
  1566.              * then it will run more slowly)
  1567.              */
  1568.  
  1569.             yy_next_state = yy_try_NUL_trans( yy_current_state );
  1570.  
  1571.             yy_bp = yytext + YY_MORE_ADJ;
  1572.  
  1573.             if ( yy_next_state )
  1574.             {
  1575.             /* consume the NUL */
  1576.             yy_cp = ++yy_c_buf_p;
  1577.             yy_current_state = yy_next_state;
  1578.             goto yy_match;
  1579.             }
  1580.  
  1581.             else
  1582.             {
  1583.             goto yy_find_action;
  1584.             }
  1585.             }
  1586.  
  1587.         else switch ( yy_get_next_buffer() )
  1588.             {
  1589.             case EOB_ACT_END_OF_FILE:
  1590.             {
  1591.             yy_did_buffer_switch_on_eof = 0;
  1592.  
  1593.             if ( yywrap() )
  1594.                 {
  1595.                 /* note: because we've taken care in
  1596.                  * yy_get_next_buffer() to have set up yytext,
  1597.                  * we can now set up yy_c_buf_p so that if some
  1598.                  * total hoser (like flex itself) wants
  1599.                  * to call the scanner after we return the
  1600.                  * YY_NULL, it'll still work - another YY_NULL
  1601.                  * will get returned.
  1602.                  */
  1603.                 yy_c_buf_p = yytext + YY_MORE_ADJ;
  1604.  
  1605.                 yy_act = YY_STATE_EOF((yy_start - 1) / 2);
  1606.                 goto do_action;
  1607.                 }
  1608.  
  1609.             else
  1610.                 {
  1611.                 if ( ! yy_did_buffer_switch_on_eof )
  1612.                 YY_NEW_FILE;
  1613.                 }
  1614.             }
  1615.             break;
  1616.  
  1617.             case EOB_ACT_CONTINUE_SCAN:
  1618.             yy_c_buf_p = yytext + yy_amount_of_matched_text;
  1619.  
  1620.             yy_current_state = yy_get_previous_state();
  1621.  
  1622.             yy_cp = yy_c_buf_p;
  1623.             yy_bp = yytext + YY_MORE_ADJ;
  1624.             goto yy_match;
  1625.  
  1626.             case EOB_ACT_LAST_MATCH:
  1627.             yy_c_buf_p =
  1628.                 &yy_current_buffer->yy_ch_buf[yy_n_chars];
  1629.  
  1630.             yy_current_state = yy_get_previous_state();
  1631.  
  1632.             yy_cp = yy_c_buf_p;
  1633.             yy_bp = yytext + YY_MORE_ADJ;
  1634.             goto yy_find_action;
  1635.             }
  1636.         break;
  1637.         }
  1638.  
  1639.         default:
  1640. #ifdef FLEX_DEBUG
  1641.         printf( "action # %d\n", yy_act );
  1642. #endif
  1643.         YY_FATAL_ERROR(
  1644.             "fatal flex scanner internal error--no action found" );
  1645.         }
  1646.     }
  1647.     }
  1648.  
  1649.  
  1650. /* yy_get_next_buffer - try to read in a new buffer
  1651.  *
  1652.  * synopsis
  1653.  *     int yy_get_next_buffer();
  1654.  *     
  1655.  * returns a code representing an action
  1656.  *     EOB_ACT_LAST_MATCH - 
  1657.  *     EOB_ACT_CONTINUE_SCAN - continue scanning from current position
  1658.  *     EOB_ACT_END_OF_FILE - end of file
  1659.  */
  1660.  
  1661. static int yy_get_next_buffer()
  1662.  
  1663.     {
  1664.     register YY_CHAR *dest = yy_current_buffer->yy_ch_buf;
  1665.     register YY_CHAR *source = yytext - 1; /* copy prev. char, too */
  1666.     register int number_to_move, i;
  1667.     int ret_val;
  1668.  
  1669.     if ( yy_c_buf_p > &yy_current_buffer->yy_ch_buf[yy_n_chars + 1] )
  1670.     YY_FATAL_ERROR(
  1671.         "fatal flex scanner internal error--end of buffer missed" );
  1672.  
  1673.     /* try to read more data */
  1674.  
  1675.     /* first move last chars to start of buffer */
  1676.     number_to_move = yy_c_buf_p - yytext;
  1677.  
  1678.     for ( i = 0; i < number_to_move; ++i )
  1679.     *(dest++) = *(source++);
  1680.  
  1681.     if ( yy_current_buffer->yy_eof_status != EOF_NOT_SEEN )
  1682.     /* don't do the read, it's not guaranteed to return an EOF,
  1683.      * just force an EOF
  1684.      */
  1685.     yy_n_chars = 0;
  1686.  
  1687.     else
  1688.     {
  1689.     int num_to_read = yy_current_buffer->yy_buf_size - number_to_move - 1;
  1690.  
  1691.     if ( num_to_read > YY_READ_BUF_SIZE )
  1692.         num_to_read = YY_READ_BUF_SIZE;
  1693.  
  1694.     else if ( num_to_read <= 0 )
  1695.         YY_FATAL_ERROR( "fatal error - scanner input buffer overflow" );
  1696.  
  1697.     /* read in more data */
  1698.     YY_INPUT( (&yy_current_buffer->yy_ch_buf[number_to_move]),
  1699.           yy_n_chars, num_to_read );
  1700.     }
  1701.  
  1702.     if ( yy_n_chars == 0 )
  1703.     {
  1704.     if ( number_to_move == 1 )
  1705.         {
  1706.         ret_val = EOB_ACT_END_OF_FILE;
  1707.         yy_current_buffer->yy_eof_status = EOF_DONE;
  1708.         }
  1709.  
  1710.     else
  1711.         {
  1712.         ret_val = EOB_ACT_LAST_MATCH;
  1713.         yy_current_buffer->yy_eof_status = EOF_PENDING;
  1714.         }
  1715.     }
  1716.  
  1717.     else
  1718.     ret_val = EOB_ACT_CONTINUE_SCAN;
  1719.  
  1720.     yy_n_chars += number_to_move;
  1721.     yy_current_buffer->yy_ch_buf[yy_n_chars] = YY_END_OF_BUFFER_CHAR;
  1722.     yy_current_buffer->yy_ch_buf[yy_n_chars + 1] = YY_END_OF_BUFFER_CHAR;
  1723.  
  1724.     /* yytext begins at the second character in yy_ch_buf; the first
  1725.      * character is the one which preceded it before reading in the latest
  1726.      * buffer; it needs to be kept around in case it's a newline, so
  1727.      * yy_get_previous_state() will have with '^' rules active
  1728.      */
  1729.  
  1730.     yytext = &yy_current_buffer->yy_ch_buf[1];
  1731.  
  1732.     return ( ret_val );
  1733.     }
  1734.  
  1735.  
  1736. /* yy_get_previous_state - get the state just before the EOB char was reached
  1737.  *
  1738.  * synopsis
  1739.  *     yy_state_type yy_get_previous_state();
  1740.  */
  1741.  
  1742. static yy_state_type yy_get_previous_state()
  1743.  
  1744.     {
  1745.     register yy_state_type yy_current_state;
  1746.     register YY_CHAR *yy_cp;
  1747.  
  1748.     register YY_CHAR *yy_bp = yytext;
  1749.  
  1750.     yy_current_state = yy_start;
  1751.     if ( yy_bp[-1] == '\n' )
  1752.     ++yy_current_state;
  1753.     yy_state_ptr = yy_state_buf;
  1754.     *yy_state_ptr++ = yy_current_state;
  1755.  
  1756.     for ( yy_cp = yytext + YY_MORE_ADJ; yy_cp < yy_c_buf_p; ++yy_cp )
  1757.     {
  1758.     register YY_CHAR yy_c = (*yy_cp ? yy_ec[*yy_cp] : 1);
  1759.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1760.         {
  1761.         yy_current_state = yy_def[yy_current_state];
  1762.         if ( yy_current_state >= 342 )
  1763.         yy_c = yy_meta[yy_c];
  1764.         }
  1765.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1766.     *yy_state_ptr++ = yy_current_state;
  1767.     }
  1768.  
  1769.     return ( yy_current_state );
  1770.     }
  1771.  
  1772.  
  1773. /* yy_try_NUL_trans - try to make a transition on the NUL character
  1774.  *
  1775.  * synopsis
  1776.  *     next_state = yy_try_NUL_trans( current_state );
  1777.  */
  1778.  
  1779. #ifdef YY_USE_PROTOS
  1780. static yy_state_type yy_try_NUL_trans( register yy_state_type yy_current_state )
  1781. #else
  1782. static yy_state_type yy_try_NUL_trans( yy_current_state )
  1783. register yy_state_type yy_current_state;
  1784. #endif
  1785.  
  1786.     {
  1787.     register int yy_is_jam;
  1788.  
  1789.     register YY_CHAR yy_c = 1;
  1790.     while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )
  1791.     {
  1792.     yy_current_state = yy_def[yy_current_state];
  1793.     if ( yy_current_state >= 342 )
  1794.         yy_c = yy_meta[yy_c];
  1795.     }
  1796.     yy_current_state = yy_nxt[yy_base[yy_current_state] + yy_c];
  1797.     *yy_state_ptr++ = yy_current_state;
  1798.     yy_is_jam = (yy_current_state == 341);
  1799.  
  1800.     return ( yy_is_jam ? 0 : yy_current_state );
  1801.     }
  1802.  
  1803.  
  1804. #ifdef YY_USE_PROTOS
  1805. static void yyunput( YY_CHAR c, register YY_CHAR *yy_bp )
  1806. #else
  1807. static void yyunput( c, yy_bp )
  1808. YY_CHAR c;
  1809. register YY_CHAR *yy_bp;
  1810. #endif
  1811.  
  1812.     {
  1813.     register YY_CHAR *yy_cp = yy_c_buf_p;
  1814.  
  1815.     /* undo effects of setting up yytext */
  1816.     *yy_cp = yy_hold_char;
  1817.  
  1818.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1819.     { /* need to shift things up to make room */
  1820.     register int number_to_move = yy_n_chars + 2; /* +2 for EOB chars */
  1821.     register YY_CHAR *dest =
  1822.         &yy_current_buffer->yy_ch_buf[yy_current_buffer->yy_buf_size + 2];
  1823.     register YY_CHAR *source =
  1824.         &yy_current_buffer->yy_ch_buf[number_to_move];
  1825.  
  1826.     while ( source > yy_current_buffer->yy_ch_buf )
  1827.         *--dest = *--source;
  1828.  
  1829.     yy_cp += dest - source;
  1830.     yy_bp += dest - source;
  1831.     yy_n_chars = yy_current_buffer->yy_buf_size;
  1832.  
  1833.     if ( yy_cp < yy_current_buffer->yy_ch_buf + 2 )
  1834.         YY_FATAL_ERROR( "flex scanner push-back overflow" );
  1835.     }
  1836.  
  1837.     if ( yy_cp > yy_bp && yy_cp[-1] == '\n' )
  1838.     yy_cp[-2] = '\n';
  1839.  
  1840.     *--yy_cp = c;
  1841.  
  1842.     /* note: the formal parameter *must* be called "yy_bp" for this
  1843.      *       macro to now work correctly
  1844.      */
  1845.     YY_DO_BEFORE_ACTION; /* set up yytext again */
  1846.     }
  1847.  
  1848.  
  1849. #ifdef __cplusplus
  1850. static int yyinput()
  1851. #else
  1852. static int input()
  1853. #endif
  1854.  
  1855.     {
  1856.     int c;
  1857.     YY_CHAR *yy_cp = yy_c_buf_p;
  1858.  
  1859.     *yy_cp = yy_hold_char;
  1860.  
  1861.     if ( *yy_c_buf_p == YY_END_OF_BUFFER_CHAR )
  1862.     {
  1863.     /* yy_c_buf_p now points to the character we want to return.
  1864.      * If this occurs *before* the EOB characters, then it's a
  1865.      * valid NUL; if not, then we've hit the end of the buffer.
  1866.      */
  1867.     if ( yy_c_buf_p < &yy_current_buffer->yy_ch_buf[yy_n_chars] )
  1868.         /* this was really a NUL */
  1869.         *yy_c_buf_p = '\0';
  1870.  
  1871.     else
  1872.         { /* need more input */
  1873.         yytext = yy_c_buf_p;
  1874.         ++yy_c_buf_p;
  1875.  
  1876.         switch ( yy_get_next_buffer() )
  1877.         {
  1878.         case EOB_ACT_END_OF_FILE:
  1879.             {
  1880.             if ( yywrap() )
  1881.             {
  1882.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1883.             return ( EOF );
  1884.             }
  1885.  
  1886.             YY_NEW_FILE;
  1887.  
  1888. #ifdef __cplusplus
  1889.             return ( yyinput() );
  1890. #else
  1891.             return ( input() );
  1892. #endif
  1893.             }
  1894.             break;
  1895.  
  1896.         case EOB_ACT_CONTINUE_SCAN:
  1897.             yy_c_buf_p = yytext + YY_MORE_ADJ;
  1898.             break;
  1899.  
  1900.         case EOB_ACT_LAST_MATCH:
  1901. #ifdef __cplusplus
  1902.             YY_FATAL_ERROR( "unexpected last match in yyinput()" );
  1903. #else
  1904.             YY_FATAL_ERROR( "unexpected last match in input()" );
  1905. #endif
  1906.         }
  1907.         }
  1908.     }
  1909.  
  1910.     c = *yy_c_buf_p;
  1911.     yy_hold_char = *++yy_c_buf_p;
  1912.  
  1913.     return ( c );
  1914.     }
  1915.  
  1916.  
  1917. #ifdef YY_USE_PROTOS
  1918. void yyrestart( FILE *input_file )
  1919. #else
  1920. void yyrestart( input_file )
  1921. FILE *input_file;
  1922. #endif
  1923.  
  1924.     {
  1925.     yy_init_buffer( yy_current_buffer, input_file );
  1926.     yy_load_buffer_state();
  1927.     }
  1928.  
  1929.  
  1930. #ifdef YY_USE_PROTOS
  1931. void yy_switch_to_buffer( YY_BUFFER_STATE new_buffer )
  1932. #else
  1933. void yy_switch_to_buffer( new_buffer )
  1934. YY_BUFFER_STATE new_buffer;
  1935. #endif
  1936.  
  1937.     {
  1938.     if ( yy_current_buffer == new_buffer )
  1939.     return;
  1940.  
  1941.     if ( yy_current_buffer )
  1942.     {
  1943.     /* flush out information for old buffer */
  1944.     *yy_c_buf_p = yy_hold_char;
  1945.     yy_current_buffer->yy_buf_pos = yy_c_buf_p;
  1946.     yy_current_buffer->yy_n_chars = yy_n_chars;
  1947.     }
  1948.  
  1949.     yy_current_buffer = new_buffer;
  1950.     yy_load_buffer_state();
  1951.  
  1952.     /* we don't actually know whether we did this switch during
  1953.      * EOF (yywrap()) processing, but the only time this flag
  1954.      * is looked at is after yywrap() is called, so it's safe
  1955.      * to go ahead and always set it.
  1956.      */
  1957.     yy_did_buffer_switch_on_eof = 1;
  1958.     }
  1959.  
  1960.  
  1961. #ifdef YY_USE_PROTOS
  1962. void yy_load_buffer_state( void )
  1963. #else
  1964. void yy_load_buffer_state()
  1965. #endif
  1966.  
  1967.     {
  1968.     yy_n_chars = yy_current_buffer->yy_n_chars;
  1969.     yytext = yy_c_buf_p = yy_current_buffer->yy_buf_pos;
  1970.     yyin = yy_current_buffer->yy_input_file;
  1971.     yy_hold_char = *yy_c_buf_p;
  1972.     }
  1973.  
  1974.  
  1975. #ifdef YY_USE_PROTOS
  1976. YY_BUFFER_STATE yy_create_buffer( FILE *file, int size )
  1977. #else
  1978. YY_BUFFER_STATE yy_create_buffer( file, size )
  1979. FILE *file;
  1980. int size;
  1981. #endif
  1982.  
  1983.     {
  1984.     YY_BUFFER_STATE b;
  1985.  
  1986.     b = (YY_BUFFER_STATE) malloc( sizeof( struct yy_buffer_state ) );
  1987.  
  1988.     if ( ! b )
  1989.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  1990.  
  1991.     b->yy_buf_size = size;
  1992.  
  1993.     /* yy_ch_buf has to be 2 characters longer than the size given because
  1994.      * we need to put in 2 end-of-buffer characters.
  1995.      */
  1996.     b->yy_ch_buf = (YY_CHAR *) malloc( (unsigned) (b->yy_buf_size + 2) );
  1997.  
  1998.     if ( ! b->yy_ch_buf )
  1999.     YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" );
  2000.  
  2001.     yy_init_buffer( b, file );
  2002.  
  2003.     return ( b );
  2004.     }
  2005.  
  2006.  
  2007. #ifdef YY_USE_PROTOS
  2008. void yy_delete_buffer( YY_BUFFER_STATE b )
  2009. #else
  2010. void yy_delete_buffer( b )
  2011. YY_BUFFER_STATE b;
  2012. #endif
  2013.  
  2014.     {
  2015.     if ( b == yy_current_buffer )
  2016.     yy_current_buffer = (YY_BUFFER_STATE) 0;
  2017.  
  2018.     free( (char *) b->yy_ch_buf );
  2019.     free( (char *) b );
  2020.     }
  2021.  
  2022.  
  2023. #ifdef YY_USE_PROTOS
  2024. void yy_init_buffer( YY_BUFFER_STATE b, FILE *file )
  2025. #else
  2026. void yy_init_buffer( b, file )
  2027. YY_BUFFER_STATE b;
  2028. FILE *file;
  2029. #endif
  2030.  
  2031.     {
  2032.     b->yy_input_file = file;
  2033.  
  2034.     /* we put in the '\n' and start reading from [1] so that an
  2035.      * initial match-at-newline will be true.
  2036.      */
  2037.  
  2038.     b->yy_ch_buf[0] = '\n';
  2039.     b->yy_n_chars = 1;
  2040.  
  2041.     /* we always need two end-of-buffer characters.  The first causes
  2042.      * a transition to the end-of-buffer state.  The second causes
  2043.      * a jam in that state.
  2044.      */
  2045.     b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR;
  2046.     b->yy_ch_buf[2] = YY_END_OF_BUFFER_CHAR;
  2047.  
  2048.     b->yy_buf_pos = &b->yy_ch_buf[1];
  2049.  
  2050.     b->yy_eof_status = EOF_NOT_SEEN;
  2051.     }
  2052. # line 579 "gen.l"
  2053.  
  2054.  
  2055. void flex_init(file)
  2056.    FILE* file;
  2057. {
  2058.   static int first_call = 1;
  2059.   line_count   = 1;
  2060.   next_free    = 0;
  2061.   virtual_flag = False;
  2062.   yyin = file;
  2063.  
  2064.   yy_init = 1;
  2065.   yy_start = 0;
  2066.  
  2067.   if (first_call == 1)
  2068.     first_call = 0;
  2069.   else
  2070.         yyrestart (file);
  2071. }
  2072.